; Fix typo in Tramp
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 6 Apr 2025 07:11:06 +0000 (09:11 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 6 Apr 2025 07:11:06 +0000 (09:11 +0200)
* lisp/net/tramp-cache.el (with-tramp-saved-connection-property):
Fix typo.

lisp/net/tramp-cache.el

index 71b8cfa67bf3f337119440cbf72c7a502a7af2e6..87e7feae1883bef71d9e0d8ce5dc7f7f037d29be 100644 (file)
@@ -473,10 +473,10 @@ used to cache connection properties of the local machine."
          (hash (tramp-get-hash-table key))
          (cached (and (hash-table-p hash)
                       (gethash ,property hash tramp-cache-undefined))))
-     (tramp-message key 7 "Saved %s %s" property cached)
+     (tramp-message key 7 "Saved %s %s" ,property cached)
      (unwind-protect (progn ,@body)
        ;; Reset PROPERTY.  Recompute hash, it could have been flushed.
-       (tramp-message key 7 "Restored %s %s" property cached)
+       (tramp-message key 7 "Restored %s %s" ,property cached)
        (setq hash (tramp-get-hash-table key))
        (if (not (eq cached tramp-cache-undefined))
           (puthash ,property cached hash)